home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / include / DShowIDL / dmodshow.idl < prev    next >
Text File  |  2001-10-08  |  1KB  |  35 lines

  1. //------------------------------------------------------------------------------
  2. // File: DMODShow.idl
  3. //
  4. // Desc: This file will be processed by the MIDL tool to 
  5. //       produce dmodshow.h and proxy-stub code.
  6. //
  7. // Copyright (c) 1999-2001, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. import "unknwn.idl";
  12. import "objidl.idl";
  13. import "mediaobj.idl";
  14.  
  15. // 94297043-bd82-4dfd-b0de-8177739c6d20
  16. cpp_quote("DEFINE_GUID(CLSID_DMOWrapperFilter, 0x94297043,0xbd82,0x4dfd,0xb0,0xde,0x81,0x77,0x73,0x9c,0x6d,0x20);")
  17.  
  18. // bcd5796c-bd52-4d30-ab76-70f975b89199
  19. cpp_quote("DEFINE_GUID(CLSID_DMOFilterCategory,0xbcd5796c,0xbd52,0x4d30,0xab,0x76,0x70,0xf9,0x75,0xb8,0x91,0x99);")
  20.  
  21.  
  22. [
  23.     object,
  24.     uuid(52d6f586-9f0f-4824-8fc8-e32ca04930c2),
  25. ]
  26. interface IDMOWrapperFilter : IUnknown
  27. {
  28.     //  Init is passed in the clsid (so it can call CoCreateInstance)
  29.     //  and the catgory under which the DMO lives.
  30.     //  Note that catDMO can be CLSID_NULL, in which case no special
  31.     //  category-specific processing will be invoked in the wrapper filter.
  32.     HRESULT Init(REFCLSID clsidDMO, REFCLSID catDMO);
  33. }
  34.  
  35.